home *** CD-ROM | disk | FTP | other *** search
/ The Sunday Times: Parent Power / The Sunday Times - Parent Power.iso / pc / help / bcd / mac / ejectStuckCdInMacOS.sh < prev   
Encoding:
Linux/UNIX/POSIX Shell Script  |  2004-06-22  |  191 b   |  4 lines

  1. #!/bin/sh
  2. if [ -d /Volumes/STUC05_INSTALL ]; 
  3. then EJECTVAR=`df|grep /Volumes/STUC05_INSTALL | cut -f1 -d' '`; diskutil unmount /Volumes/STUC05_INSTALL; hdiutil eject -force $EJECTVAR; fi
  4.